body>main {
    width: 100%;
}

body>main>section {
    width: 62vw;
    height: fit-content;
    height: -moz-fit-content;
    min-height: 32px;
    min-width: 300px;
    margin: 64px auto;
    margin-bottom: 128px;
    color: var(--ColorDark);
}

main>section>article p {
    font-size: 24px;
}

.boxArticle.single {
    width: calc(100% - 4px);
    display: grid;
    grid-gap: 8px;
    grid-template-columns: repeat(4, 1fr);
    height: fit-content;
}

.boxArticle.single {
    border: none;
    margin-top: 64px;
}

.boxArticle.single article {
    padding-bottom: 8px;
}

.boxArticle article a img {
    width: 100%;
    height: auto;
    /*border: 2px solid var(--ColorDark);*/
    padding: 0 !important;
    display: inline-block !important;
}

.boxArticle article a {
    color: var(--ColorDark);
    text-decoration: none;
    font-weight: bold;
    text-transform: capitalize;
}

.MemberName {
    margin: 0;
}

.MemberRole {
    font-weight: 500;
    color: #444;
}

@media (max-width:860px) {
    .boxArticle.single {
        grid-template-columns: repeat(2, 1fr);
    }
}